Conversation
There was a problem hiding this comment.
Overall, i believe it could just be better to have a main app, also used to make the dashboard, with react router dom we could have a /welcome route instead of 10 react apps for a page, so it will reduce the extension build size, also adding pretty animations could improve the ux, and please commit using the following guidelines: https://docs.onruntime.com/contributing/commits
| font-size: 48px; | ||
| font-weight: 600; | ||
| text-align: center; | ||
| color: var(--primary); |
There was a problem hiding this comment.
it's true that I didn't do it everywhere, but get into the habit of using fallback colors when you use css variables
There was a problem hiding this comment.
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| height: 100vh; |
There was a problem hiding this comment.
don't use 100vh because we cant scroll if the window height is low
There was a problem hiding this comment.
ok so i don't know how to do it
| @@ -0,0 +1,94 @@ | |||
| import React from "react"; | |||
There was a problem hiding this comment.
in this file you just dont respect the sizes indicated on the figma
| import { createRoot } from "react-dom/client"; | ||
|
|
||
| import Popup from "./Popup"; | ||
| import "./index.css"; |
|
ça a vraiment rien à voir avec le dashboard |
|
yes, it's got nothing to do with the dashboard, but we're not going to make 10 react applications in a single extension, so we might as well combine everything in one application and put the dashboard, welcome and settings in it - the only thing that should be separate is the popup, because we can't do otherwise. |
|
It could be added when the dashboard is made |
|
Or you can do it now so we can start the dashboard |
|
No description provided.